home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / LISP Related / Generalized LISP / Glisp 1.2 / Source files / Compiler next >
Encoding:
Text File  |  1990-08-04  |  768 b   |  14 lines  |  [TEXT/CCL ]

  1.  
  2. ; This file translates everything necessary to build a "Generalized Lisp" image.
  3. ; This may be loaded into a fresh Common Lisp image.  Note that Mlisp is not ordinarily
  4. ; included in Generalized Lisp; it must be loaded explicitly.
  5.  
  6. (let ((*default-pathname-defaults* (pathname "ccl;glisp 1.2:")))
  7.   (parse ";source files:Constants.glisp"    :output ";object files:Constants.lisp")
  8.   (parse ";source files:Interpreter.glisp"    :output ";object files:Interpreter.lisp")
  9.   (parse ";source files:Scanner.glisp"        :output ";object files:Scanner.lisp")
  10.   (parse ";source files:Glisp.glisp"        :output ";object files:Glisp.lisp")
  11.   (parse ";source files:Plisp.glisp"        :output ";object files:Plisp.lisp")
  12.  
  13. ; (parse ";Mlisp dialect:Mlisp.glisp"        :output ";Mlisp dialect:Mlisp.lisp")
  14. )